home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 May: Tool Chest / Dev.CD May 97 TC.toast / Sample Code / Toolbox / ModalList / ModalList.make < prev    next >
Encoding:
Text File  |  1994-11-18  |  1.6 KB  |  53 lines  |  [TEXT/MPS ]

  1. #
  2. #
  3. #    Apple Macintosh Developer Technical Support
  4. #
  5. #    ModalList : Simple Modal Dialog and List Manager Sample Application
  6. #
  7. #    ModalList.make
  8. #
  9. #    Copyright © 1989 Apple Computer, Inc.
  10. #    All rights reserved.
  11. #
  12. #    Versions:    
  13. #            1.00                     10/89
  14. #            1.01                    06/92
  15. #
  16. #    Components:
  17. #            ModalList.make            October 1, 1989
  18. #            ModalList.h                October 1, 1989
  19. #            ModalList.c                October 1, 1989
  20. #            ModalListInit.c            June 12, 1992
  21. #            ModalList.r                October 1, 1989
  22. #            TCModalList.π            June 12, 1992
  23. #            TCModalList.π.rsrc        June 12, 1992
  24. #
  25. #    ModalList is an example application that demonstrates
  26. #    how to use the Dialog Manager and List Manager routines
  27. #    together. It is not a good example of a sample application
  28. #    but a great example of the use of lists in a dialog. The
  29. #    default LDEF is used to display a 2 dimensional list of strings.
  30. #    Each cell's string is initialized to represent it's position in the
  31. #    list. The user can change these strings and search for a particular
  32. #    setting. Once again this is not meant as an example application and
  33. #    there are some features that are documented in the source listing
  34. #    that you should pay close attention to inorder to understand how
  35. #    this example works.
  36. #
  37. #
  38.  
  39. CObjs            =    ModalList.c.o ∂
  40.                     ModalListInit.c.o ∂
  41.                     "{Libraries}"Runtime.o ∂
  42.                     "{Libraries}"Interface.o
  43.  
  44. ModalList        ƒƒ    {CObjs} ModalList.make
  45.                     Link -o {Targ} {CObjs}
  46.                     SetFile {Targ} -t APPL -c '????' -a B
  47.  
  48. ModalList        ƒƒ    ModalList.r ModalList.make
  49.                     Rez -rd -o {Targ} ModalList.r -append
  50.  
  51. ModalList.c.o    ƒƒ    ModalList.c ModalList.make ModalList.h
  52.  
  53. ModalListInit.c.o    ƒƒ    ModalListInit.c ModalList.make ModalList.h